I am a newbie to this sort of thing, but am trying to wor out how to setup webhooks/API calls from PagerDuty to another tool (Freshdesk)
I have the sample code needed to setup a ticket:
curl -v -u APIKEYGOESERE:X -H “Content-Type: application/json” -d ‘{ “description”: “Details about the issue…”, “subject”: “Support Needed…”, “email”: "tom@outerspace.com", “priority”: 1, “status”: 2, “cc_emails”: [“ram@freshdesk.com”,“diana@freshdesk.com”], “custom_fields” : { “category” : “Primary” } }’ -X POST ‘https://domainnamegoeshere.freshdesk.com/api/v2/tickets’
But whwn i go to PagerDuty how does this trnspose to the options used in PagerDuty:
In Add Web Connection:
In the Worflow:
Or even in Custom Alert Actions etc.
It would be great if someone with a little knowledge can explain how to trnslate the curl into the PD setting and tell me what goes where
Thanks in advance